Skip to main content
Version: V10

Webhooks Payloads - Live Session

Overview

VIDIZMO's Webhooks enable you to subscribe to the various events taking place within the VIDIZMO portal and receive notifications based on those events within your business application.

To read more about what Webhooks are and how to set them up, see: VIDIZMO Webhooks Reference Guide.

This document aims to provide sample notification payloads for a few of the key events generated on a Live Broadcast session in VIDIZMO.

Live Session Published/Scheduled

Find below the event log object included in the request body of the notification payload sent whenever a Live Session is scheduled in VIDIZMO: Certainly! Here's the full content converted into Markdown format right here for you to use directly:

Live Session Published/Scheduled

Find below the event log object included in the request body of the notification payload sent whenever a Live Session is scheduled in VIDIZMO:

{
"id": "66728",
"vidizmoEventId": "MashupPublished",
"eventDate": "2020-10-29T19:32:49.46",
"ip": "136.135.169.234",
"status": "Success",
"subjectType": "Live",
"subjectId": 152386,
"subjectTitle": "Live Broadcast - CEO Speech",
"tenant": {...},
"subjectDetail": "...",
"user": {...},
"isSystem": false
}

Live Session Started

Find below the event log object included in the request body of the notification payload sent whenever a Live Session is started in VIDIZMO:

{
"id": "66728",
"vidizmoEventId": "MeetingStarted",
"eventDate": "2020-10-29T19:33:02.663",
"ip": "136.135.169.234",
"status": "Success",
"subjectType": "Chat",
"subjectId": 0,
"subjectTitle": "Chat",
"tenant": {...},
"user": {...},
"isSystem": false
}

## Live Session Paused/Resumed

Find below the event log object included in the request body of the notification payload sent whenever a Live Session is paused or resumed in VIDIZMO:

```json
{
"id": "66728",
"vidizmoEventId": "LiveMashupStatusChanged",
"eventDate": "2020-10-29T19:33:57.43",
"ip": "136.135.169.234",
"status": "Success",
"subjectType": "Live",
"subjectId": 152386,
"subjectTitle": "Live Broadcast - CEO Speech",
"tenant": {...},
"description": "Running",
"subjectDetail": "152386",
"previousSubjectDetail": "152386",
"user": {...},
"isSystem": false
}

Meeting Joined

Find below the event log object included in the request body of the notification payload sent whenever a Live Session is joined by a user in VIDIZMO:

{
"id": "66728",
"vidizmoEventId": "MeetingJoined",
"eventDate": "2020-10-29T19:33:02.727",
"ip": "136.135.169.234",
"status": "Success",
"subjectType": "Chat",
"subjectId": 0,
"subjectTitle": "Chat",
"tenant": {...},
"user": {...},
"isSystem": false
}

Meeting Left

Find below the event log object included in the request body of the notification payload sent whenever a user discontinues watching a Live Session in VIDIZMO:

{
"id": "66728",
"vidizmoEventId": "MeetingLeft",
"eventDate": "2020-10-29T19:23:04.05",
"ip": "136.135.169.234",
"status": "Success",
"subjectType": "Chat",
"subjectId": 0,
"subjectTitle": "Chat",
"tenant": {...},
"user": {...},
"isSystem": false
}

Live Session Ended

Find below the event log object included in the request body of the notification payload sent whenever a Live Session is ended in VIDIZMO:

{
"id": "66728",
"vidizmoEventId": "LiveMashupCompleted",
"eventDate": "2020-10-29T19:34:06.37",
"ip": "136.135.169.234",
"status": "Success",
"subjectType": "Live",
"subjectId": 152386,
"subjectTitle": "Live Broadcast - CEO Speech",
"tenant": {...},
"description": "Completed",
"subjectDetail": "{\"MashupId\":152386}",
"user": {...},
"isSystem": false
}

Read Next

Webhooks Reference Guide